home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / games / b2b103.zip / INSTALL0.B2B < prev    next >
Text File  |  1996-10-01  |  2KB  |  63 lines

  1. #
  2. #Copyright (C)1996 Military Simulations Inc.
  3. #*********************Command Summary***************************************
  4. #---------------------===============---------------------------------------
  5. #
  6. #batch : -generates the batch file to run the game.
  7. #
  8. #copy  : -copies single files from the cd to the path specified by the user
  9. #        see mkdir. Eg copy bin\bmps\manic.bmp bin\bmps\manic.bmp copies
  10. #        manic.bmp from the cd to the hd. The directories must exist.
  11. #
  12. #directory: sets subdir plus files to Read. See subdir and TCOPY as well.
  13. #           eg  directory bmps\*.bmp sets the next tcopy to read *.bmp in
  14. #           cd:\bmps
  15. #
  16. #fade_down:   not yet implemented.
  17. #
  18. #fade_up  :   not yet implemented.
  19. #
  20. #get_picture: loads picture specified from cd:\insdata and fades it in.
  21. #
  22. #gosub    :   does gosub to @label which can be anywhere in the script,
  23. #             but must be on a line by itself, and begin with @.
  24. #goto     :   see gosub, but a direct jump to label.
  25. #
  26. #mkdir x y alpha omega:
  27. #             invokes editor, and gets user to specify dest path. *MUST* be
  28. #             called before any copy commands. x y are coords from top left
  29. #             of where dialog box should be placed.
  30. #             alpha is min disk size in K if swap file needed.
  31. #             omega is min disk size in K if swap file NOT needed
  32. #
  33. #palette_set: not yet implemented, as get_screen does it automagically.
  34. #
  35. #pause    :  pause in milliseconds.
  36. #
  37. #pen      :  not yet implemented.
  38. #
  39. #return   :  returns to instruction after last gosub. Note gosub's and
  40. #             hence returns can be nested.
  41. #
  42. #set_file_count x:  x should equal number of file ops where a fileop is
  43. #                   either a copy or a tcopy.
  44. #
  45. #show_picture :not yet implemented.
  46. #
  47. #status_panel [x y]|[off]:      Shows status panel at x y or removes it. In
  48. #          order for  loading bar this must be displayed.
  49. #
  50. #subdir   : makes subdirectories on destination. Call after Mkdir. Must Call
  51. #           before tcopy, as dest subdir must exist.
  52. #
  53. #tcopy  :   copies the wildcarded files from the last directory command to
  54. #           the last subdir command.
  55. #****************************************************************************
  56. get_picture title_1.bmp
  57. mkdir           160 300 45000 45000
  58. demosfx
  59. #Batch
  60.  
  61. @end
  62.  
  63.